]> git.r.bdr.sh - rbdr/super-polarity/blob - Super Polarity/Program.cs
Merge branch 'master' of github.com:benbeltran/super-polarity
[rbdr/super-polarity] / Super Polarity / Program.cs
1 #region Using Statements
2 using System;
3 using System.Collections.Generic;
4 using System.Linq;
5 #endregion
6
7 namespace SuperPolarity
8 {
9 #if WINDOWS || LINUX
10 /// <summary>
11 /// The main class.
12 /// </summary>
13 public static class Program
14 {
15 /// <summary>
16 /// The main entry point for the application.
17 /// </summary>
18 [STAThread]
19 static void Main()
20 {
21 using (var superPolarity = new SuperPolarity())
22 superPolarity.Run();
23 }
24 }
25 #endif
26 }